home *** CD-ROM | disk | FTP | other *** search
Text File | 1997-02-22 | 837 b | 27 lines | [TEXT/?BAS] |
-
- MsgBox("A demonstration of TalkBASIC controlling the Scriptable Text Editor")
- MsgBox("Make sure that the top doc in Scriptable Text Editor has at least three words")
-
- Launch(quill)
- index = quill.Window(1).index
- name$ = quill.Window(1).name
- msgbox("Window 1, index = " + index + ", is named “" + name$ + "”")
-
- wordnum = 1
- fontsize = quill.Window(1).Word(wordnum).Size
- msgbox("Word " + STR$(wordnum) + " font size = " + STR$(fontsize) )
-
- wordnum = 2
- fontsize = quill.cwin_(1).cwor_(wordnum).ptsz_
- msgbox("Word " + STR$(wordnum) + " font size = " + STR$(fontsize) )
-
- msgbox("We will now revise the text, font and size of word #3")
- quill.Window(1).Word(3).Size = 48
- quill.Window(1).Word(3).Contents = "TalkBASIC"
- quill.Window(1).Word(3).Font = "Times"
-
- msgbox("End with a musical flourish!")
- note 1000,100,5
- note 1500,100,5
- note 2000,100,5
-